refactor(orion-server): support multiple builds per task instead of single build#1405
Merged
benjamin-747 merged 2 commits intoSep 3, 2025
Merged
Conversation
…ingle build BREAKING CHANGE: Previously, each task was bound to a single build. Now, tasks can have multiple associated builds. This change modifies the database schema, task scheduling logic, and API contracts. Signed-off-by: MYUU <1405758738@qq.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
Author
|
@liuyangjuncong20202570 日志接口有变更 |
Signed-off-by: MYUU <1405758738@qq.com>
slow2342
force-pushed
the
refactor/orion-server-logging
branch
from
September 3, 2025 04:04
e35d13d to
f5634db
Compare
benjamin-747
approved these changes
Sep 3, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
概要
本 PR 对
orion-server的任务与构建关系进行了重构。原先每个 task 只能绑定一个 build,现在一个 task 可以同时关联多个 build,以支持更灵活的调度与执行流程。
变更内容
tasks表由单个build_id字段改为存储build_ids[]与output_files[]。scheduler.rs、tasks.rs和api.rs,适配新的任务-构建关系。变更动机
注意事项
关联 Issue